home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / program / jfklib.zip / ABOUT.HPP < prev    next >
C/C++ Source or Header  |  1991-05-10  |  389b  |  22 lines

  1. /*
  2.     ABOUT.HPP - AboutBox für den SourcePrinter
  3.     (C) 1991 by Joachim Kainz 'On a mission from Bhudda'
  4. */
  5.     #if !defined (__ABOUT_HPP)
  6.  
  7.     #include "dialog.hpp"
  8.  
  9.     class ABOUT : public DIALOG
  10.     {
  11.       protected:
  12.         virtual METHOD WMCommand (WORD wID, WORD wMsg, HWND hCtl);
  13.  
  14.       public:
  15.         EXPORT ABOUT (LPSTR    lpDlg, HWND    hParent) :
  16.             DIALOG (lpDlg, hParent)
  17.         {    }
  18.  
  19.     };
  20.  
  21.     #endif
  22.